Scientific Linux 6
Sponsored Link

FTP Server - Pure-FTPd
2011/03/19
  Install Pure-FTPd to configure FTP server to transfer files.

[1] Install Pure-FTPd
[root@www ~]#
yum --enablerepo=epel -y install pure-ftpd
 
# install from EPEL


[root@www ~]#
vi /etc/pure-ftpd/pure-ftpd.conf


# line 77: change (no Anonymous)

NoAnonymous      
yes


# line 143: uncomment

UnixAuthentication       yes

[root@www ~]#
/etc/rc.d/init.d/pure-ftpd start

Starting proftpd:
[  OK  ]

[root@www ~]#
chkconfig pure-ftpd on
 
Tweet